home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Programming / LEDA / source / src / graph / _node_part.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  490 b   |  24 lines

  1. /*******************************************************************************
  2. +
  3. +  LEDA  3.1c
  4. +
  5. +
  6. +  _node_part.c
  7. +
  8. +
  9. +  Copyright (c) 1994  by  Max-Planck-Institut fuer Informatik
  10. +  Im Stadtwald, 6600 Saarbruecken, FRG     
  11. +  All rights reserved.
  12. *******************************************************************************/
  13.  
  14.  
  15. #include <LEDA/node_partition.h>
  16.  
  17. void node_partition::init(const graph& G) 
  18. { node v;
  19.   forall_nodes(v,G) v->data[1] = partition::make_block(v);
  20.  }
  21.  
  22.  
  23.